@charset "UTF-8";

/**
 * 这里是 08cms 团队内置的常用样式变量
 */

/* 宽度相关 */

/* 高度相关 */

/**
 * 宽度设置，内置最小宽度为当前设置宽度功能
 * 参数1 $width = 1200px 默认1200px；整站内容宽度，可自定义传值进来设置其他宽度
*/

/* 颜色变量 */

/* 行为相关颜色 */

/* 文字基本颜色 */

/* 背景颜色 */

/* 边框颜色 */

/* 文字尺寸 */

/* Border Radius */

/* 阴影 */

/* 按钮相关 */

/**
 * 这里是 08cms 团队常用 mixin 代码块
 *
 * 调用方式 scss 中用 @include xxx  即可
 */

/**
 * 1px边框，包括上、下、左、右以及全部
 * 参数1 $direction = all 边框方向，默认全边框
 * 参数2 $size = 1px 边框宽度，默认1px
 * 参数3 $style = solid 边框样式，默认实心solid
 * 参数4 $color = dddddd 边框颜色，默认dddddd
 * 参数3 $radius = 2px 边框圆角，仅全边框时起作用，默认2px
*/

/**
 * 单行省略
 * 参数1 $lineHeight = 行高 如 24px
 */

/**
 * 多行省略
 * 参数1 $lineLimit = 行数，如 2
 * 参数2 $lineHeight = 行高 如 24px
 * 参数3 $fixedHeight = 是否固定高度，布尔值，默认 false, 可传true
 */

/*图片水平垂直居中*/

/*块元素百分比下居中*/

@-webkit-keyframes skeleton {
  0% {
    background-position-x: 400%;
  }

  50% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: -400%;
  }
}

@keyframes skeleton {
  0% {
    background-position-x: 400%;
  }

  50% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: -400%;
  }
}

.blank50 {
  height: 30px;
  width: 100%;
}

.cms-index-swiper {
  min-width: 1200px;
}

.cms-index-swiper .cms-swiper-item {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.cms-index-swiper .img-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.cms-index-swiper .img-wrap .cms-image {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.cms-index-navs {
  background-color: #f9f9f9;
  min-width: 1200px;
  padding: 20px 0;
}

.cms-index-navs .cms-index-navs-container {
  display: flex;
}

.cms-index-navs .cms-index-navs-item {
  height: 45px;
  padding-left: 30px;
  display: flex;
  flex: 1;
  overflow: hidden;
  border-right: 1px dashed #cccccc;
}

.cms-index-navs .cms-index-navs-item:last-child {
  border-right-width: 0;
}

.cms-index-navs .cms-index-navs-item .navs-item-title {
  width: 57px;
  overflow: hidden;
  font-size: 28px;
  color: #DD2222;
  margin-right: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cms-index-navs .cms-index-navs-item .navs-item-content {
  display: flex;
  flex-wrap: wrap;
  line-height: 19px;
}

.cms-index-navs .cms-index-navs-item .navs-item-content .navs-item-tag {
  margin-bottom: 5px;
  margin-right: 20px;
}

.cms-quick-navs {
  display: flex;
  height: 124px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
}

.cms-quick-navs .cms-quick-navs-item {
  flex: 1;
  box-sizing: border-box;
  padding: 20px;
  border-right: 1px dashed #cccccc;
  position: relative;
}

.cms-quick-navs .cms-quick-navs-item .arrow-cicle {
  position: absolute;
  right: -11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.cms-quick-navs .cms-quick-navs-item .arrow-cicle.top {
  top: -10px;
  background: linear-gradient(360deg, #eee 0%, #fff 100%);
}

.cms-quick-navs .cms-quick-navs-item .arrow-cicle.bottom {
  bottom: -10px;
  background: linear-gradient(180deg, #eee 0%, #fff 100%);
}

.cms-quick-navs .cms-quick-navs-item:last-child {
  border-right-width: 0;
}

.cms-quick-navs .cms-quick-navs-item:last-child .arrow-cicle {
  display: none;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-title .navs-item-title-right .hover_in {
  display: none;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-title .navs-item-title-right:hover .hover_out {
  display: none;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-title .navs-item-title-right:hover .hover_in {
  display: inline-block;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-title .le {
  display: flex;
  align-items: center;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-title .le .cms-svg-icon {
  margin-right: 10px;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-content {
  line-height: 24px;
  max-height: 48px;
  overflow: hidden;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-content .item-text {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  cursor: pointer;
}

.cms-quick-navs .cms-quick-navs-item .navs-item-content .item-text:hover {
  color: #DD2222;
}

.cms-hot .cms-hot-header {
  display: flex;
  margin-bottom: 20px;
}

.cms-hot .cms-hot-header .cms-hot-header-item {
  background-color: #f9f9f9;
  width: 50%;
  box-sizing: border-box;
  font-size: 20px;
  color: #000000;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  margin-right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #f9f9f9;
}

.cms-hot .cms-hot-header .cms-hot-header-item .cms-svg-icon {
  margin-right: 10px;
}

.cms-hot .cms-hot-header .cms-hot-header-item.active {
  font-weight: bold;
  border-top: 2px solid #DD2222;
}

.cms-hot .cms-hot-header .cms-hot-header-item:last-child {
  margin-right: 0;
}

.cms-hot .cms-hot-list {
  display: none;
  align-items: center;
}

.cms-hot .cms-hot-list.show {
  display: flex;
}

.cms-hot .cms-hot-list .cms-hot-list-item {
  width: 285px;
  height: 254px;
  background: #f9f9f9;
  padding: 10px;
  margin-right: 20px;
  border: 1px solid #eeeeee;
  border-radius: "0px";
  box-sizing: border-box;
  cursor: pointer;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div {
  border: 1px solid #eeeeee;
  border-radius: "0px";
  overflow: hidden;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-thumb {
  position: relative;
  width: 265px;
  height: 183px;
  overflow: hidden;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-thumb .cms-hot-list-item-content {
  width: 100%;
  height: 40px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  color: #ffffff;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-thumb .cms-hot-list-item-content .cms-hot-list-item-title {
  flex: 1;
  line-height: 20px;
  max-height: 20px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-thumb .cms-hot-list-item-content .cms-hot-list-item-price {
  margin-left: 10px;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-thumb .cms-hot-list-item-content .cms-hot-list-item-price .min-house-price {
  color: #ffffff;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-thumb .cms-hot-list-item-content .cms-hot-list-item-price .min-house-price .cms-house-price-l .price {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-tag-div {
  width: 100%;
  height: 47px;
  padding: 14px 10px 16px 10px;
  box-sizing: border-box;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-tag-div .cms-tag {
  margin-right: 10px;
  margin-bottom: 20px;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  text-align: center;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-bottom .cms-hot-list-item-bottom-l {
  width: 50%;
  height: 47px;
  line-height: 47px;
  background: #ffffff;
  color: #333333;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-bottom .cms-hot-list-item-bottom-line {
  width: 8px;
  height: 47px;
  background: linear-gradient(90deg, #eeeeee 0%, #FFFFFF 100%);
  opacity: 0.5;
  flex-shrink: 0;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-bottom .cms-hot-list-item-bottom-r {
  width: 50%;
  height: 47px;
  line-height: 47px;
  background: #ffffff;
  color: #DD2222;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-params {
  background: #ffffff;
  padding: 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 47px;
}

.cms-hot .cms-hot-list .cms-hot-list-item .cms-hot-list-item-div .cms-hot-list-item-params .cms-hot-list-item-params-item {
  margin-right: 10px;
  font-size: 12px;
  color: #666666;
}

.cms-hot .cms-hot-list .cms-hot-list-item:nth-child(4n) {
  margin-right: 0;
}

.cms-index-news .cms-index-news-content {
  display: flex;
}

.cms-index-news .cms-news-swiper {
  width: 400px;
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
  height: 300px;
  overflow: hidden;
}

.cms-index-news .cms-news-swiper .el-carousel__arrow {
  height: 40px;
  width: 30px;
  border-radius: 0;
  background: rgba(16, 29, 55, 0.4);
}

.cms-index-news .cms-news-swiper .el-carousel__arrow .el-icon-arrow-left,
.cms-index-news .cms-news-swiper .el-carousel__arrow .el-icon-arrow-right {
  font-size: 26px;
}

.cms-index-news .cms-news-swiper .el-carousel__arrow.el-carousel__arrow--left {
  left: 0;
}

.cms-index-news .cms-news-swiper .el-carousel__arrow.el-carousel__arrow--right {
  right: 0;
}

.cms-index-news .cms-news-swiper .cms-news-swiper-item {
  position: relative;
  height: 100%;
  display: block;
}

.cms-index-news .cms-news-swiper .cms-news-swiper-item .cms-news-swiper-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 16px;
  line-height: 40px;
  text-indent: 15px;
  padding-right: 80px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 40px;
  border-radius: 0 0 4px 4px;
  box-sizing: border-box;
}

.cms-index-news .cms-news-swiper .carousel-dot {
  position: absolute;
  right: 15px;
  bottom: 16px;
  display: flex;
  align-items: center;
  z-index: 10;
}

.cms-index-news .cms-news-swiper .carousel-dot .carousel-dot-item {
  display: block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #ffffff;
  margin-left: 5px;
  cursor: pointer;
}

.cms-index-news .cms-news-swiper .carousel-dot .carousel-dot-item.active {
  background: #DD2222;
}

.cms-index-news .cms-news-swiper .carousel-hot {
  height: 80px;
  width: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.cms-index-news .cms-news-right {
  width: 285px;
}

.cms-index-news .cms-news-right.hidden {
  display: none;
}

.cms-index-news .cms-news-right .cms-ad-container {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cms-index-news .cms-news-right .cms-ad-container .cms-ad-item {
  height: 145px;
  overflow: hidden;
}

.cms-index-news .cms-news-content {
  flex: 1;
  overflow: auto;
  margin-right: 20px;
}

.cms-index-news .cms-news-content .news-more-top {
  padding: 10px 0;
  border-top: 1px dashed #eeeeee;
}

.cms-index-news .cms-news-content .news-more-top:first-child {
  border-top: 0;
}

.cms-index-news .cms-news-content .news-more-top .news-top-item {
  font-size: 24px;
  font-weight: bold;
  color: #DD2222;
  line-height: 30px;
  max-height: 30px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.cms-index-news .cms-news-content .news-more {
  margin-top: 10px;
}

.cms-index-news .cms-news-content .news-more .news-item {
  margin-bottom: 18px;
  font-size: 16px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 16px;
}

.cms-index-news .cms-news-content .news-more .news-item.first {
  font-size: 20px;
  color: #DD2222;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 20px;
}

.cms-index-news .cms-news-content .news-more .news-item .circle {
  margin-right: 10px;
  width: 8px;
  height: 8px;
  border: 2px solid #cccccc;
  border-radius: 50%;
  display: inline-block;
}

.cms-index-news .cms-news-content .news-more .news-item .category {
  border-right: 1px solid #cccccc;
  padding-right: 10px;
  margin-right: 10px;
}

.cms-index-news .cms-news-content .news-more .news-item:hover {
  color: #DD2222;
}

.cms-index-news .cms-news-content .news-more .news-item:hover .circle {
  border: 2px solid #DD2222;
}

.cms-index-news .cms-news-content .news-more .news-item:last-child {
  margin-bottom: 0;
}

.cms-index-title {
  display: flex;
  height: 50px;
  background-color: #f8f8f8;
  justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
  padding-right: 10px;
}

.cms-index-title .cms-index-title-icon {
  position: absolute;
  left: 0;
  width: 4px;
  background-color: #DD2222;
  top: 0;
  height: 50px;
}

.cms-index-title .cms-index-title-arrow {
  position: absolute;
  left: 1px;
  top: 23px;
  width: 0;
  height: 0;
  border-top: 6px solid #DD2222;
  border-right: 6px solid transparent;
  transform: rotate(135deg);
}

.cms-index-title .cms-index-title-left {
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.cms-index-title .cms-index-title-left .title-name {
  font-size: 20px;
  font-weight: bold;
  color: #000000;
}

.cms-index-title .cms-index-title-left .title-declare {
  font-size: 12px;
  color: #999999;
  margin: 8px 10px 0 10px;
}

.cms-index-title .cms-index-title-left a {
  margin-left: 20px;
}

.cms-index-title .cms-index-title-left .fabu {
  border: 1px solid #2071FF;
  color: #2071FF;
}

.cms-index-title .cms-index-title-right {
  display: flex;
  align-items: center;
}

.cms-index-title .cms-index-title-right .cms-mr-5 {
  margin-right: 30px;
}

.cms-index-title .cms-index-title-right .cms-mr-5 .cms-index-title-right-item {
  position: relative;
}

.cms-index-title .cms-index-title-right .cms-mr-5 .cms-index-title-right-item .cms-index-title-right-item-bottom-border {
  width: 100%;
  height: 1px;
  border-radius: 1px;
  position: absolute;
  left: 0;
  bottom: -5px;
  background: #f8f8f8;
}

.cms-index-title .cms-index-title-right .cms-mr-5 .cms-index-title-right-item .cms-index-title-right-item-hot {
  position: absolute;
  top: -15px;
  right: -5px;
}

.cms-index-title .cms-index-title-right .cms-mr-5 .cms-index-title-right-item-active {
  color: #DD2222;
}

.cms-index-title .cms-index-title-right .cms-mr-5 .cms-index-title-right-item-active .cms-index-title-right-item-bottom-border {
  background: #DD2222;
}

.cms-index-title .cms-index-title-right .cms-mr-5:last-child {
  margin-right: 0;
}

.cms-index-title .cms-index-title-right .cms-mr-5:hover .cms-index-title-right-item .cms-index-title-right-item-bottom-border {
  background: #DD2222;
}

.cms-index-title .cms-index-title-right .btn-a {
  margin-left: 20px;
}

.cms-index-title .cms-index-title-right .cut-div {
  display: flex;
  align-items: center;
}

.cms-index-title .cms-index-title-right .cut-div .cut-div-item {
  width: 30px;
  height: 30px;
  background: #ffffff;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  cursor: pointer;
}

.cms-index-title .cms-index-title-right .cut-div .cut-div-item-no {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent;
}

.cms-index-title .cms-index-title-right .title-btn {
  border: 1px solid #EEEEEE;
}

.cms-index-title .cms-index-title-right .title-btn .text {
  color: #666666;
  font-weight: 400;
}

.cms-index-title .cms-index-title-right .title-btn:hover .text {
  color: #ffffff;
}

.cms-index-price {
  display: flex;
  justify-content: space-between;
}

.cms-index-price .cms-index-price-item {
  height: 190px;
  width: 590px;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  overflow: hidden;
}

.cms-index-price .cms-index-price-item .price-content {
  height: 100px;
  padding: 20px 0;
  display: flex;
}

.cms-index-price .cms-index-price-item .price-content .price-time {
  height: 100px;
  width: 100px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  margin: 0 40px 0 20px;
}

.cms-index-price .cms-index-price-item .price-content .price-time .price-time-header {
  border-radius: 4px 4px 0 0;
  height: 70px;
  background-color: #ffffff;
  text-align: center;
  color: #999999;
}

.cms-index-price .cms-index-price-item .price-content .price-time .price-time-header span {
  font-size: 50px;
  color: #DD2222;
  font-weight: bold;
}

.cms-index-price .cms-index-price-item .price-content .price-time .price-time-footer {
  border-radius: 0 0 4px 4px;
  background-color: #DD2222;
  line-height: 30px;
  height: 30px;
  text-align: center;
  color: #ffffff;
}

.cms-index-price .cms-index-price-item .price-content .price-data {
  width: 200px;
  padding: 5px 0;
}

.cms-index-price .cms-index-price-item .price-content .price-data .price-data-title {
  color: #999999;
}

.cms-index-price .cms-index-price-item .price-content .price-data .price-data-dj {
  margin: 10px 0;
}

.cms-index-price .cms-index-price-item .price-content .price-data .price-data-dj span {
  font-size: 24px;
  font-weight: bold;
}

.cms-index-price .cms-index-price-item .price-content .price-data .price-data-db.down {
  color: #3cb950;
}

.cms-index-price .cms-index-price-item .price-content .price-data .price-data-db.up {
  color: #DD2222;
}

.panel-header {
  height: 50px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 0;
  background: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
  box-sizing: border-box;
  color: #000000;
}

.panel-header.no-border {
  border-bottom-width: 0;
}

.panel-header .panel-header-l {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.panel-header .span {
  display: inline-block;
  height: 20px;
  width: 4px;
  border-radius: 2px;
  background-color: #DD2222;
  margin-right: 15px;
}

.panel-header .title-btn .text {
  color: #666666;
  font-weight: 400;
}

.panel-header .title-btn:hover .text {
  color: #ffffff;
}

.list-div {
  display: flex;
  flex-wrap: wrap;
}

.list-div .list-item {
  display: inline-block;
  width: 224px;
  margin-right: 20px;
}

.list-div .list-item:nth-child(4n) {
  margin-right: 0;
}

.list-div .list-item:nth-child(1),
.list-div .list-item:nth-child(2),
.list-div .list-item:nth-child(3),
.list-div .list-item:nth-child(4) {
  margin-bottom: 10px;
}

.list-div .list-item .list-item-thumb {
  width: 224px;
  height: 155px;
  position: relative;
}

.list-div .list-item .list-item-thumb .list-item-top-right {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  font-size: 12px;
  color: #ffffff;
  padding: 4px 13px;
  border-radius: 12px;
}

.list-div .list-item .list-item-thumb .list-item-content {
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(84, 84, 84, 0.5) 100%);
  color: #ffffff;
  padding: 0 10px;
  box-sizing: border-box;
}

.list-div .list-item .list-item-thumb .list-item-content .list-item-title {
  flex: 1;
  line-height: 20px;
  max-height: 20px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.list-div .list-item .list-item-thumb .list-item-content .list-item-icon-div {
  display: flex;
  align-items: center;
}

.list-div .list-item .list-item-thumb .list-item-content .list-item-icon-div .cms-svg-icon {
  margin-left: 10px;
}

.list-div .list-item .list-item-div {
  width: 100%;
}

.list-div .list-item .list-item-div .list-item-params-view {
  display: flex;
  background: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 30px;
}

.list-div .list-item .list-item-div .list-item-params-view .list-item-params-price {
  margin-right: 10px;
  color: #DD2222;
}

.list-div .list-item .list-item-div .list-item-params-view .list-item-params-price .font-blod {
  font-size: 16px;
  font-weight: bold;
}

.list-div .list-item .list-item-div .list-item-params-view .list-item-params-item {
  margin-right: 10px;
  font-size: 12px;
  color: #666666;
}

.list-div .list-item .list-item-div .list-item-tag-div {
  width: 100%;
  height: 24px;
  box-sizing: border-box;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-wrap: wrap;
}

.list-div .list-item .list-item-div .list-item-tag-div .cms-tag {
  margin-right: 10px;
  margin-bottom: 20px;
}

.list-div .list-item:hover {
  color: #333333;
}

.cms-index-houses-content {
  display: flex;
}

.cms-index-houses-content .houses-left {
  width: 224px;
  margin-right: 20px;
  flex-shrink: 0;
}

.cms-index-houses-content .houses-left .houses-open {
  height: 288px;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.cms-index-houses-content .houses-left .houses-open .el-timeline-item {
  border-left: 1px dashed #cccccc;
  padding-bottom: 10px;
}

.cms-index-houses-content .houses-left .houses-open .el-timeline-item .el-timeline-item__wrapper {
  padding-left: 9px;
}

.cms-index-houses-content .houses-left .houses-open .panel-content {
  height: 238px;
  overflow-y: auto;
  border-top-width: 0;
  padding-top: 3px;
  padding-left: 9px;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-date {
  display: flex;
  margin-bottom: 5px;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-date .houses-open-date-content {
  background: #eeeeee;
  color: #999999;
  padding: 1px 5px;
  display: inline-block;
  border-radius: 4px;
  font-size: 12px;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-date.open-hover .houses-open-date-content {
  background: linear-gradient(90deg, #fe5e4a 0%, #DD2222 100%);
  color: #ffffff;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-dot {
  margin-left: -5px;
  margin-top: 1px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-dot span {
  display: block;
  width: 7px;
  height: 7px;
  background: #ffffff;
  border: 2px solid #cccccc;
  border-radius: 50%;
  box-sizing: border-box;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-item {
  line-height: 24px;
  font-size: 12px;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-item span {
  float: right;
  font-size: 12px;
  color: #999999;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-item .houses-open-item-name {
  cursor: pointer;
  font-size: 14px;
  width: 94%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 26px;
}

.cms-index-houses-content .houses-left .houses-open .panel-content .houses-open-item .houses-open-item-name:hover {
  color: #DD2222;
}

.cms-index-houses-content .houses-left .houses-open .houses-open-ad {
  height: 288px;
  position: relative;
  overflow: hidden;
}

.cms-index-houses-content .houses-left .houses-left-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.cms-index-houses-content .houses-left .houses-left-btn .btn-item {
  background-color: #f9f9f9;
  width: 73px;
  height: 60px;
  text-align: center;
  line-height: 36px;
  display: block;
  margin-top: 2px;
}

.cms-index-houses-content .houses-left .houses-left-btn .btn-item:nth-child(1),
.cms-index-houses-content .houses-left .houses-left-btn .btn-item:nth-child(2),
.cms-index-houses-content .houses-left .houses-left-btn .btn-item:nth-child(3) {
  margin-top: 0;
}

.cms-index-houses-content .houses-left .houses-left-btn .btn-item .btn-item-icon {
  width: 25px;
  height: 25px;
  margin: 1px auto 5px;
}

.cms-index-houses-content .houses-left .houses-left-btn .btn-item .btn-item-text {
  line-height: 26px;
  font-size: 12px;
}

.cms-index-houses-content .houses-content {
  display: flex;
  flex-wrap: wrap;
}

.cms-index-houses-content .cms-tag {
  margin-right: 10px;
  margin-bottom: 20px;
}

.cms-index-floor {
  display: flex;
}

.cms-index-floor .cms-index-adviser {
  width: 100%;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content {
  display: flex;
  overflow: hidden;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item {
  margin-right: 20px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-sizing: border-box;
  line-height: 20px;
  position: relative;
  width: 285px;
  height: 140px;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item:last-child {
  margin-right: 0;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-info {
  padding: 10px;
  display: flex;
  width: 285px;
  height: 100px;
  box-sizing: border-box;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-info .adviser-item-image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 10px;
  flex-shrink: 0;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-info .adviser-item-message {
  width: 175px;
  font-size: 13px;
  padding: 5px 0;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-info .adviser-item-message .adviser-item-name {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 22px;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-info .adviser-item-message .adviser-item-name:hover {
  color: #DD2222;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-info .adviser-item-message .broker-item-number {
  display: flex;
  justify-content: space-between;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-info .adviser-item-message .adviser-item-region {
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 20px;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-control {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eeeeee;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-control .adviser-item-btn {
  width: 50%;
  cursor: pointer;
  height: 39px;
  line-height: 39px;
  color: #0387FF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #eeeeee;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-control .adviser-item-btn .adviser-item-btn-in {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-control .adviser-item-btn .cms-svg-icon {
  margin-right: 5px;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-control .adviser-item-btn:last-child {
  border-right-width: 0;
}

.cms-index-floor .cms-index-adviser .cms-index-adviser-content .adviser-item .adviser-item-control .adviser-item-btn.phone {
  color: #DD2222;
}

.cms-index-groupbuy-content {
  display: flex;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left {
  width: 285px;
  margin-right: 20px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .panel-content {
  padding-top: 0;
  border-top-width: 0;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .panel-content .el-input__prefix {
  left: 0;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .panel-content .el-input__prefix .cms-form-icon {
  border-right: 1px solid #eeeeee;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .panel-content .el-input {
  border: 1px solid #eeeeee;
  border-radius: 4px;
  box-sizing: border-box;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .panel-content .cms-form-btn {
  overflow: hidden;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .panel-content .cms-form-btn .cms-button {
  height: 40px;
  line-height: 38px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .panel-content .cms-form-btn .cms-button .text {
  font-size: 16px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order {
  background-color: #f9f9f9;
  margin-top: 20px;
  padding-bottom: 11px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-list {
  height: 145px;
  overflow: hidden;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-list.login {
  height: 205px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-list.group-order-list {
  height: 200px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-list.group-order-list.login {
  height: 255px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-list-scroll {
  transition: all 0.9s linear;
  margin-top: -30px;
  height: 100%;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-item {
  display: flex;
  height: 19px;
  line-height: 19px;
  color: #666666;
  margin-bottom: 15px;
  padding: 0 20px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-item:last-child {
  margin-bottom: 0;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-item .groupbuy-order-item-time {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 19px;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-item .groupbuy-order-item-name {
  width: 65px;
  flex-shrink: 0;
}

.cms-index-groupbuy-content .cms-index-groupbuy-left .groupbuy-order .groupbuy-order-item .groupbuy-order-item-phone {
  width: 85px;
  flex-shrink: 0;
}

.cms-index-groupbuy-content .groupbuy-content {
  width: 895px;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-list {
  height: 272px;
  overflow: hidden;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper {
  display: flex;
  justify-content: space-between;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .el-carousel__arrow {
  height: 40px;
  width: 30px;
  border-radius: 0;
  background: rgba(16, 29, 55, 0.6);
  top: 97px;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .el-carousel__arrow .el-icon-arrow-left,
.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .el-carousel__arrow .el-icon-arrow-right {
  font-size: 20px;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .el-carousel__arrow.el-carousel__arrow--left {
  left: 0;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .el-carousel__arrow.el-carousel__arrow--right {
  right: 0;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item {
  display: flex;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item {
  width: 285px;
  height: 272px;
  margin-right: 20px;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item:last-child {
  margin-right: 0;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-image {
  position: relative;
  width: 285px;
  height: 197px;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-image .groupbuy-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-image .groupbuy-item-content .groupbuy-item-title .time-count {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 40px;
  color: #ffffff;
  font-size: 14px;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-image .groupbuy-item-content .groupbuy-item-title .time-count .time-number {
  background: transparent;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-image .groupbuy-item-content .groupbuy-item-title .time-count .split {
  color: #ffffff;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-image .groupbuy-item-content .groupbuy-item-price {
  flex-shrink: 0;
  max-width: 80px;
  white-space: nowrap;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-info {
  padding: 10px;
  border: 1px solid #eeeeee;
  border-radius: 0 0 4px 4px;
  border-top-width: 0;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-info .groupbuy-item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 21px;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-info .groupbuy-item-address {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #999999;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-info .groupbuy-item-address .cms-svg-icon {
  margin-right: 5px;
  vertical-align: middle;
}

.cms-index-groupbuy-content .groupbuy-content .groupbuy-swiper .groupbuy-swiper-item .groupbuy-item .groupbuy-item-info .groupbuy-item-address .groupbuy-item-address-text {
  flex: 1;
  line-height: 19px;
  max-height: 19px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list {
  overflow: auto;
  height: 338px;
  padding-bottom: 14px;
  box-sizing: border-box;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item {
  display: flex;
  height: 35px;
  align-items: center;
  border-bottom: 1px dashed #eeeeee;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item:last-child {
  border-bottom-width: 0;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .activity-item-icon {
  height: 16px;
  width: 16px;
  color: #ffffff;
  background-color: #dddddd;
  text-align: center;
  line-height: 16px;
  font-size: 12px;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: 2px;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .activity-item-icon.red {
  background-color: #DD2222;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .tuan-hover {
  position: relative;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .tuan-hover:hover .cms-navs-second-ul {
  display: block;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .tuan-hover .cms-navs-second-ul {
  display: none;
  position: absolute;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .activity-item-title {
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 34px;
  margin-right: 20px;
  width: 100%;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .activity-item-house {
  font-size: 14px;
  width: 160px;
  flex-shrink: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 34px;
  margin-right: 20px;
  color: #999999;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .activity-item-house a {
  color: #999999;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .activity-item-house a:hover {
  color: #DD2222;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .activity-item-house:hover {
  color: #DD2222;
}

.cms-index-groupbuy-content .groupbuy-content .activity-list .activity-item .activity-item-hot {
  width: 120px;
  flex-shrink: 0;
  font-size: 12px;
  color: #999999;
  margin-right: 20px;
}

.cms-index-groupbuy-content .groupbuy-content .activity-item-btn {
  width: 90px;
  flex-shrink: 0;
}

.cms-index-groupbuy-content .groupbuy-content .activity-item-btn .text {
  color: #DD2222;
  font-size: 12px;
}

.cms-index-groupbuy-content .groupbuy-content .activity-item-btn .cms-button {
  height: 24px;
  line-height: 22px;
}

.cms-index-groupbuy-content .groupbuy-content .activity-item-btn .cms-button:hover .text {
  color: #ffffff;
}

.cms-index-sale-content {
  display: flex;
}

.cms-index-sale-content .sale-left {
  width: 224px;
  margin-right: 20px;
}

.cms-index-sale-content .sale-left .sale-left-area {
  height: 320px;
  border: 1px solid #eeeeee;
  border-radius: 0px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  line-height: 40px;
  margin-bottom: 20px;
}

.cms-index-sale-content .sale-left .sale-left-area .el-scrollbar:first-child {
  border-right: 1px solid #eeeeee;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-left {
  width: 110px;
  flex-shrink: 0;
  height: 100%;
  box-sizing: border-box;
  overflow: auto;
  padding-left: 10px;
  color: #999999;
  box-sizing: border-box;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-left .region-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 40px;
  cursor: pointer;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-left .region-title.active,
.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-left .region-title:hover {
  color: #DD2222;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-right {
  width: 138px;
  padding-right: 10px;
  height: 100%;
  padding-left: 10px;
  box-sizing: border-box;
  overflow: auto;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-right .area-xiaoqu {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-right .area-xiaoqu .area-xiaoqu-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 40px;
  font-size: 12px;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-right .area-xiaoqu .area-xiaoqu-num {
  max-width: 50px;
  padding-left: 5px;
  flex-shrink: 0;
  font-size: 12px;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-right .area-xiaoqu:hover {
  color: #DD2222;
}

.cms-index-sale-content .sale-left .sale-left-area .sale-left-area-right .area-xiaoqu-no {
  text-align: center;
  line-height: 40px;
}

.cms-index-sale-content .sale-left .sale-left-btn-view .sale-left-btn1 {
  width: 224px;
  height: 40px;
  background: #DD2222;
  border-radius: 4px;
  margin-bottom: 15px;
  color: #ffffff;
}

.cms-index-sale-content .sale-left .sale-left-btn-view .sale-left-btn1 .text {
  font-size: 16px;
}

.cms-index-sale-content .sale-left .sale-left-btn-view .sale-left-btn1:hover {
  background: #DD2222;
}

.cms-index-sale-content .sale-left .sale-left-btn-view .sale-left-btn2 {
  width: 224px;
  height: 40px;
  border: 1px solid #DD2222;
  border-radius: 4px;
  color: #DD2222;
  font-size: 16px;
}

.cms-index-sale-content .sale-left .sale-left-btn-view .sale-left-btn2 .text {
  font-size: 16px;
}

.cms-index-sale-content .sale-left .sale-left-btn-view .sale-left-btn2:hover {
  background: #DD2222;
  color: #ffffff;
  border: 1px solid #DD2222;
}

.cms-index-sale-content .sale-content {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.cms-index-sale-content .sale-content .list-item {
  display: inline-block;
  width: 224px;
  margin-right: 20px;
}

.cms-index-sale-content .sale-content .list-item:nth-child(4n) {
  margin-right: 0;
}

.cms-index-sale-content .sale-content .list-item:nth-child(1),
.cms-index-sale-content .sale-content .list-item:nth-child(2),
.cms-index-sale-content .sale-content .list-item:nth-child(3),
.cms-index-sale-content .sale-content .list-item:nth-child(4) {
  margin-bottom: 20px;
}

.cms-index-sale-content .sale-content .list-item:nth-child(5),
.cms-index-sale-content .sale-content .list-item:nth-child(6),
.cms-index-sale-content .sale-content .list-item:nth-child(7),
.cms-index-sale-content .sale-content .list-item:nth-child(8) {
  margin-bottom: 0;
}

.cms-index-sale-content .sale-content .list-item .cms-tag {
  margin-right: 10px;
  margin-bottom: 20px;
}

.cms-index-sale-content .sale-content .list-div-ad .list-item:nth-child(3n) {
  margin-right: 0;
}

.cms-index-sale-content .sale-content .list-div-ad .list-item:nth-child(4n) {
  margin-right: 20px !important;
}

.cms-index-sale-content .sale-content .list-div-ad .list-item:nth-child(1),
.cms-index-sale-content .sale-content .list-div-ad .list-item:nth-child(2),
.cms-index-sale-content .sale-content .list-div-ad .list-item:nth-child(3) {
  margin-bottom: 20px;
}

.cms-index-sale-content .sale-content .list-div-ad .list-item:nth-child(4),
.cms-index-sale-content .sale-content .list-div-ad .list-item:nth-child(5),
.cms-index-sale-content .sale-content .list-div-ad .list-item:nth-child(6) {
  margin-bottom: 0;
}

.cms-index-sale-content .sale-right {
  width: 224px;
  height: 436px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.cms-index-sale-content .sale-right.hidden {
  display: none;
}

.cms-index-rent-content {
  display: flex;
}

.cms-index-rent-content .list-item:nth-last-child(1),
.cms-index-rent-content .list-item:nth-last-child(2),
.cms-index-rent-content .list-item:nth-last-child(3),
.cms-index-rent-content .list-item:nth-last-child(4),
.cms-index-rent-content .list-item:nth-last-child(5) {
  margin-bottom: 0;
}

.cms-index-rent-content .list-item:nth-child(4n) {
  margin-right: 20px;
}

.cms-index-rent-content .list-item:nth-child(5n) {
  margin-right: 0;
}

.cms-index-rent-content .list-item .cms-tag {
  margin-right: 10px;
  margin-bottom: 20px;
}

.cms-index-ranking .ranking-content {
  display: flex;
}

.cms-index-ranking .ranking-content .ranking-item {
  width: 386px;
  margin-right: 21px;
  border-radius: 4px;
  border-width: 0;
  border: 1px solid #eeeeee;
  border-radius: 4px;
}

.cms-index-ranking .ranking-content .ranking-item .el-card__body {
  padding: 0;
}

.cms-index-ranking .ranking-content .ranking-item:last-child {
  margin-right: 0;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-header {
  height: 20px;
  background: #f8f8f8;
  line-height: 20px;
  padding: 15px 15px 15px 0;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-header i {
  display: inline-block;
  height: 20px;
  width: 4px;
  border-radius: 2px;
  background-color: #DD2222;
  margin-right: 15px;
  vertical-align: middle;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-header span {
  font-size: 20px;
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-header span.active {
  font-weight: bold;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-header span:last-child {
  margin-right: 0;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content {
  background: #ffffff;
  padding: 20px;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  line-height: 20px;
  align-items: center;
  margin-bottom: 15px;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list:last-child {
  margin-bottom: 0;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 20px;
  width: 100%;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-left:hover {
  color: #DD2222;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-number {
  height: 16px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 12px;
  text-align: center;
  line-height: 16px;
  background-color: #dddddd;
  color: #ffffff;
  border-radius: 2px;
  flex-shrink: 0;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-number.red {
  background-color: #DD2222;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-star {
  width: 90px;
  margin: 0 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-star .cms-svg-icon {
  margin-right: 5px;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-star .cms-svg-icon:last-child {
  margin-right: 0;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-add {
  max-width: 62px;
  flex-shrink: 0;
  color: #999999;
  margin-left: 10px;
  text-align: right;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 20px;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-price {
  min-width: 80px;
  margin-left: 10px;
  flex-shrink: 0;
  text-align: right;
  color: #999999;
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-price .min-house-price {
  color: #999999;
  font-size: 12px;
}

.cms-index-ranking .ranking-content .ranking-item .ranking-item-content .ranking-list .ranking-list-price .min-house-price .cms-house-price-l .price {
  color: #999999;
  font-size: 12px;
  font-weight: normal;
}

.cms-index-ask-content {
  display: flex;
}

.cms-index-ask-content .ask-item {
  width: 386px;
  height: 190px;
  box-sizing: border-box;
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.cms-index-ask-content .ask-item:nth-child(3n) {
  margin-right: 0;
}

.cms-index-ask-content .ask-item:nth-last-child(1),
.cms-index-ask-content .ask-item:nth-last-child(2),
.cms-index-ask-content .ask-item:nth-last-child(3) {
  margin-bottom: 0;
}

.cms-index-ask-content .ask-item .ask-item-info {
  display: flex;
  align-items: flex-start;
}

.cms-index-ask-content .ask-item .ask-item-info .ask-item-icon {
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  margin-right: 10px;
}

.cms-index-ask-content .ask-item .ask-item-info .ask-item-question {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  height: 48px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}

.cms-index-ask-content .ask-item .ask-item-info .ask-item-answer {
  height: 42px;
  color: #666666;
  line-height: 22px;
  max-height: 44px;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}

.cms-index-ask-content .ask-item .ask-item-desc {
  display: flex;
  justify-content: space-between;
}

.cms-index-ask-content .ask-item .ask-item-desc .ask-item-desc-left {
  color: #cccccc;
  padding-left: 26px;
  font-size: 12px;
}

.cms-index-ask-content .ask-item .ask-item-desc .ask-item-desc-left span {
  color: #00B1FF;
  margin-left: 10px;
}

.cms-index-ask-content .ask-item .ask-item-desc .ask-item-desc-right {
  color: #666666;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.cms-index-ask-content .ask-item .ask-item-desc .ask-item-desc-right.red {
  color: #D70000;
}

.cms-index-ask-content .ask-item .ask-item-desc .ask-item-desc-right .cms-svg-icon {
  margin-left: 5px;
}

.cms-index-ask-content .ask-item .ask-item-desc .ask-item-desc-right:hover {
  color: #DD2222;
}

.cms-index-xiaoqu-content {
  display: flex;
  flex-wrap: wrap;
}

.cms-index-xiaoqu-content.has-ad .xiaoqu-item:nth-child(4),
.cms-index-xiaoqu-content.has-ad .xiaoqu-item:nth-child(9) {
  margin-right: 0;
}

.cms-index-xiaoqu-content.has-ad .xiaoqu-item:nth-child(5n) {
  margin-right: 20px;
}

.cms-index-xiaoqu-content .cms-index-xiaoqu-ad {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 468px;
  height: 155px;
  overflow: hidden;
}

.cms-index-xiaoqu-content .xiaoqu-item {
  width: 224px;
  height: 155px;
  margin-right: 20px;
  position: relative;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
}

.cms-index-xiaoqu-content .xiaoqu-item:nth-child(5n) {
  margin-right: 0;
}

.cms-index-xiaoqu-content .xiaoqu-item:last-child,
.cms-index-xiaoqu-content .xiaoqu-item:nth-last-child(2),
.cms-index-xiaoqu-content .xiaoqu-item:nth-last-child(3),
.cms-index-xiaoqu-content .xiaoqu-item:nth-last-child(4),
.cms-index-xiaoqu-content .xiaoqu-item:nth-last-child(5) {
  margin-bottom: 0;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-image {
  width: 224px;
  height: 155px;
  overflow: hidden;
  display: block;
  position: relative;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-image .tag-xiaoqu {
  width: 45px;
  height: 45px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
          clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  background: #DD2222;
  position: absolute;
  top: 0;
  right: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  padding-top: 3px;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-image .tag-xiaoqu .tag-xiaoqu-number {
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-name {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 40px;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-xx {
  font-size: 12px;
  display: flex;
  flex-wrap: nowrap;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-xx .xiaoqu-item-sale {
  margin-left: 5px;
  white-space: nowrap;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-xx .xiaoqu-item-sale:first-child {
  margin-left: 0;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-xx .number {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.cms-index-xiaoqu-content .xiaoqu-item .xiaoqu-item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 224px;
  padding: 0 10px;
  box-sizing: border-box;
}

.cms-ad-container {
  margin-top: 30px;
}

